GET api/travel/day/authorizedadult?id={id}&familyId={familyId}&childId={childId}&childIds[0]={childIds[0]}&childIds[1]={childIds[1]}
Retrieves authorized adults based on various filter criteria. Supports filtering by authorized adult ID, family ID, single child ID, or multiple child IDs.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Optional. The unique identifier of a specific authorized adult. Query string parameter. |
integer |
None. |
| familyId |
Optional. The unique identifier of a family to retrieve authorized adults for. Query string parameter. |
integer |
None. |
| childId |
Optional. The unique identifier of a child to retrieve authorized adults for. Query string parameter. |
integer |
None. |
| childIds |
Optional. List of child identifiers to retrieve authorized adults for. Query string parameter. |
Collection of integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Returns HTTP 200 (OK) with an array of AuthorizedAdult objects matching the filter criteria.
Collection of AuthorizedAdult| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| LastName | string |
None. |
|
| FirstName | string |
None. |
|
| NickName | string |
None. |
|
| string |
None. |
||
| Phone | string |
None. |
|
| DOB | date |
None. |
|
| Gender | Gender |
None. |
|
| AvatarFileName | string |
None. |
|
| Notes | string |
None. |
|
| ReleaseCode | string |
None. |
|
| ChildIDList | Collection of integer |
None. |
Response Formats
application/json, text/json
[
{
"ID": 1,
"LastName": "sample string 2",
"FirstName": "sample string 3",
"NickName": "sample string 4",
"Email": "sample string 5",
"Phone": "sample string 6",
"DOB": "2026-09-08T12:07:05.3123473-06:00",
"Gender": 0,
"AvatarFileName": "sample string 7",
"Notes": "sample string 8",
"ReleaseCode": "sample string 9",
"ChildIDList": [
1,
2
]
},
{
"ID": 1,
"LastName": "sample string 2",
"FirstName": "sample string 3",
"NickName": "sample string 4",
"Email": "sample string 5",
"Phone": "sample string 6",
"DOB": "2026-09-08T12:07:05.3123473-06:00",
"Gender": 0,
"AvatarFileName": "sample string 7",
"Notes": "sample string 8",
"ReleaseCode": "sample string 9",
"ChildIDList": [
1,
2
]
}
]
application/javascript
[{"ID":1,"LastName":"sample string 2","FirstName":"sample string 3","NickName":"sample string 4","Email":"sample string 5","Phone":"sample string 6","DOB":"2026-09-08T12:07:05.3123473-06:00","Gender":0,"AvatarFileName":"sample string 7","Notes":"sample string 8","ReleaseCode":"sample string 9","ChildIDList":[1,2]},{"ID":1,"LastName":"sample string 2","FirstName":"sample string 3","NickName":"sample string 4","Email":"sample string 5","Phone":"sample string 6","DOB":"2026-09-08T12:07:05.3123473-06:00","Gender":0,"AvatarFileName":"sample string 7","Notes":"sample string 8","ReleaseCode":"sample string 9","ChildIDList":[1,2]}]
application/xml, text/xml
<ArrayOfAuthorizedAdult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AuthorizedAdult>
<ID>1</ID>
<LastName>sample string 2</LastName>
<FirstName>sample string 3</FirstName>
<NickName>sample string 4</NickName>
<Email>sample string 5</Email>
<Phone>sample string 6</Phone>
<DOB>2026-09-08T12:07:05.3123473-06:00</DOB>
<Gender>Female</Gender>
<AvatarFileName>sample string 7</AvatarFileName>
<Notes>sample string 8</Notes>
<ReleaseCode>sample string 9</ReleaseCode>
<ChildIDList>
<int>1</int>
<int>2</int>
</ChildIDList>
</AuthorizedAdult>
<AuthorizedAdult>
<ID>1</ID>
<LastName>sample string 2</LastName>
<FirstName>sample string 3</FirstName>
<NickName>sample string 4</NickName>
<Email>sample string 5</Email>
<Phone>sample string 6</Phone>
<DOB>2026-09-08T12:07:05.3123473-06:00</DOB>
<Gender>Female</Gender>
<AvatarFileName>sample string 7</AvatarFileName>
<Notes>sample string 8</Notes>
<ReleaseCode>sample string 9</ReleaseCode>
<ChildIDList>
<int>1</int>
<int>2</int>
</ChildIDList>
</AuthorizedAdult>
</ArrayOfAuthorizedAdult>